math/big.Int.Set (method)

38 uses

	math/big (current package)
		int.go#L95: func (z *Int) Set(x *Int) *Int {
		int.go#L128: 	z.Set(x)
		int.go#L135: 	z.Set(x)
		int.go#L254: 	z.Set(intOne)
		int.go#L321: 		y0 = new(Int).Set(y)
		int.go#L352: 		y0 = new(Int).Set(y)
		int.go#L587: 			m = new(Int).Set(m)
		int.go#L618: 			z.Set(b)
		int.go#L620: 			z.Set(a)
		int.go#L741: 		t.Set(Ub)
		int.go#L744: 		Ua.Set(t)
		int.go#L852: 			B.Set(b)
		int.go#L920: 		z.Set(&x)
		int.go#L942: 	a.Set(x)
		int.go#L943: 	b.Set(y)
		int.go#L980: 		a.Set(&b)
		int.go#L981: 		b.Set(&c)
		int.go#L1056: 		t.Set(&b)
		int.go#L1063: 			return z.Set(&y)
		rat.go#L64: 	z.b.Set(intOne)
		rat.go#L334: 	z.a.Set(x)
		rat.go#L356: 		z.a.Set(&x.a)
		rat.go#L357: 		z.b.Set(&x.b)
		rat.go#L471: 		z.Set(x)

	crypto/elliptic
		params.go#L130: 		x3.Set(x2)
		params.go#L131: 		y3.Set(y2)
		params.go#L132: 		z3.Set(z2)
		params.go#L136: 		x3.Set(x1)
		params.go#L137: 		y3.Set(y1)
		params.go#L138: 		z3.Set(z1)
		params.go#L177: 	x3.Set(r)
		params.go#L184: 	y3.Set(r)
		params.go#L234: 	alpha2.Set(alpha)

	crypto/rsa
		rsa.go#L239: 	modulus := new(big.Int).Set(bigOne)
		rsa.go#L411: 		n := new(big.Int).Set(bigOne)
		rsa.go#L412: 		totient := new(big.Int).Set(bigOne)
		rsa.go#L627: 		values.R = new(big.Int).Set(r)

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L696: 				out.(*big.Int).Set(defaultValue)